home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 4 / Amiga Tools 4.iso / tools / internet-tools / connect-line / cl / devkit / c / include / serialgetty.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-12  |  749 b   |  54 lines

  1. /*
  2.  * ConnectLine: Serial-Getty-Daten
  3.  *
  4.  * Verwalter: Michael Balzer
  5.  * 
  6.  * $RCSfile$
  7.  * $Revision$
  8.  * $Date$
  9.  *
  10.  * $Author$
  11.  * $Locker$
  12.  * $State$
  13.  *
  14.  * $Log$
  15.  */
  16.  
  17. #ifndef _CL_SerialGetty_H
  18. #define _CL_SerialGetty_H
  19.  
  20. #include <cl/types.h>
  21. #include <cl/clutil.h>
  22. #include <cl/cl_prefs.h>
  23.  
  24.  
  25. #define PREFSID_SERIALGETTY MAKE_ID('M','P','G','S')
  26.  
  27.  
  28. #define PTSERGET_PORTLIST        (0 + TAGT_NOL)
  29.  
  30. struct PDSerialGetty
  31. {
  32.     char    devicename[32];
  33.     ulong    unit;
  34.  
  35.     ulong    serflags;            // Shared, 7Wire, ...
  36.     ulong    baudrate;
  37.     ulong    buffersize;
  38.     
  39.     char    cmd_init[256];
  40.     char    cmd_dial[32];
  41.     char    cmd_hangup[32];
  42.     char    cmd_escape;
  43.     
  44.     char    txt_connect[32];
  45.     char    txt_busy[32];
  46.     char    txt_voice[32];
  47.     char    txt_ok[32];
  48.     char    txt_ring[32];
  49.     char    txt_nocarrier[32];
  50. };
  51.  
  52.  
  53. #endif
  54.